jQuery(document).ready(function($){var cueID='';var salesQueue=window.SalesQueue;var billingQueue=window.BillingQueue;var technicalSupportQueue=window.TechnicalSupportQueue;var businessLine='';var chatType='';$('#launch-wireline-chat').click(function(){$('.chat-container-1').hide();$('.chat-container-2').show();$('#goChatSales a').focus();});$('#launch-wireless-chat').click(function(){$('.chat-container-1').hide();$('.chat-container-2').show();$('#goChatSales a').focus();});$('#goChatSales').click(function(){chatType='Sales';cueID=salesQueue;launchChat(cueID,chatType);});$('#goChatTech').click(function(){chatType='Tech Support';cueID=technicalSupportQueue;launchChat(cueID,chatType);});$('#goChatBilling').click(function(){chatType='Billing';cueID=billingQueue;launchChat(cueID,chatType);});$('#chat-window').on('hidden.bs.modal',function(e){resetChat();});function launchChat(){_gaq.push(['_trackEvent','Chat',chatType]);window.open(cueID,'newwindow',config='height=638,width=404,resizable=yes,scrollbars=yes,toolbar=no');} function resetChat(){$('.chat-container-2').show();}});